home *** CD-ROM | disk | FTP | other *** search
/ Java Programmer's Toolkit / Java Programmer's Toolkit.iso / applets / collectn / binaryfu.jav < prev    next >
Text File  |  1995-10-22  |  890b  |  36 lines

  1. /*
  2.   File: BinaryFunction.java
  3.  
  4.   Originally written by Doug Lea and released into the public domain. 
  5.   Thanks for the assistance and support of Sun Microsystems Labs, Agorics 
  6.   Inc, Loral, and everyone contributing, testing, and using this code.
  7.  
  8.   History:
  9.   Date     Who                What
  10.   22Oct95  dl@cs.oswego.edu   Created.
  11.  
  12. */
  13.   
  14. package collections;
  15.  
  16. /**
  17.  *
  18.  * BinaryFunction is a common interface for classes with an arbitrary 
  19.  * function of two Object arguments that returns an Object result,
  20.  * without throwing any kind of user exception.
  21.  * @author Doug Lea
  22.  * @version 0.93
  23.  *
  24.  * <P> For an introduction to this package see <A HREF="index.html"> Overview </A>.
  25.  *
  26. **/
  27.  
  28. public interface BinaryFunction {
  29.  
  30. /**
  31.  * Execute some function of two arguments. return a result
  32. **/
  33.  
  34.   public Object     binaryFunction(Object fst, Object snd); 
  35. }
  36.